Overload | Description |
---|---|
Sort() | Sorts the entire array by using a default comparer and the quick sort algorithm. |
Sort(IComparer<T>) | Sorts the entire array by using the specified comparer and the quick sort algorithm. |
Sort(INGreaterThanComparer<T>) | Sorts the entire array by using the specified comparer and the quick sort algorithm. |
Sort(Int32,Int32,INGreaterThanComparer<T>) | Sorts only a portion of the array by using the specified comparer and the quick sort algorithm. |
Sort(Int32,Int32,IComparer<T>) | Sorts only a portion of the array using the specified comparer and the quick sort algorithm. |